home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / tempfile < prev    next >
Text File  |  1993-07-15  |  268b  |  12 lines

  1. /*----------------------------------------------------------------------
  2.    Create a temporary file, the name of which we don't care about 
  3. and that goes away when it is closed.  Just like ANSI C tmpfile.
  4.   ----*/
  5. FILE  *
  6. create_tmpfile()
  7. {
  8.     return(tmpfile());
  9. }
  10.  
  11.  
  12.